home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Caml Light 0.61 / Source / src / runtime / intext.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-24  |  270 b   |  23 lines  |  [TEXT/MPS ]

  1. /* structured input/output */
  2.  
  3. #ifndef _intext_
  4. #define _intext_
  5.  
  6.  
  7. #include "io.h"
  8.  
  9. #ifdef ANSI
  10.  
  11. extern value extern_val(struct channel *, value);
  12. extern value intern_val(struct channel *);
  13.  
  14. #else
  15.  
  16. value extern_val();
  17. value intern_val();
  18.  
  19. #endif
  20.  
  21.  
  22. #endif /* _intext_ */
  23.